home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -serious- / wb / merlin / rexx / miamioffline.rexx < prev    next >
OS/2 REXX Batch file  |  1999-07-12  |  233b  |  19 lines

  1. /* Script to take miami offline and exit it */
  2.  
  3. options results
  4. signal on break_c
  5.  
  6. /* disconnect from internet */
  7.  
  8. say "Closing Internet connection..."
  9.   address 'MIAMI.1'
  10.   offline
  11.  
  12. /* quit miami */
  13.  
  14. say GetOnLineTime
  15.   quit
  16.  
  17. exit
  18.  
  19.